home *** CD-ROM | disk | FTP | other *** search
/ GFX Sensations 1 / Graphic Sensations - Volume 1.iso / tools / amiga / 3d_tools / rend10.lzh / REND1.0 / Include / display.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-08  |  493 b   |  29 lines

  1. #ifndef DISPLAY_H
  2. #define DISPLAY_H
  3.  
  4.  /* Display constants. */
  5.  
  6. #define WAIT        0    /* Put process to sleep while waiting for input. */
  7. #define NOWAIT        1    /* Just see if there is any input. */
  8.       
  9.  /* Display functions. */
  10.  
  11. UBYTE opendisplay(UWORD *,UWORD,UWORD,UBYTE);
  12. void closedisplay(void);
  13. void clearscreen(void);
  14. void line(WORD, WORD, WORD, WORD);
  15. void showgraphics(void);
  16.  
  17.  /* Intuition input. */
  18.  
  19. UBYTE getinput(UBYTE);
  20.  
  21.  /* Timing function. */
  22.  
  23. void  pause(ULONG,ULONG);
  24.  
  25. #endif
  26.  
  27.  
  28.  
  29.